home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Eagles Nest BBS 1
/
Eagles_Nest_Mac_Collection_Disc_1.TOAST
/
Special Hardware
/
Mac286#1&2
/
MAC286MSDOS.image
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-09-09
|
2KB
|
40 lines
echo off
cls
echo This utility will copy the DOS utility files into a subdirectory
echo called \DOS on your C: drive. It will also copy the files which
echo are necessary to use the D: drive (link to the Macintosh world)
echo and configure your C: drive to automatically execute those files
echo when you start Mac286 or Mac86.
echo -
echo TO RUN THIS, THE INSTALL DRIVE MUST BE YOUR CURRENT DRIVE.
echo IF THE FOLLOWING LINE IS NOT "A:\", STOP NOW.
cd
echo -
echo To stop now, hold down CONTROL and press the 'C' or 'scroll lock' key, or
pause
cls
echo Creating C:\DOS directory.
echo (If you already have a \DOS directory, you will get an "Unable to create
echo directory" warning. Do not be alarmed.)
md c:\dos
echo Installing the "DSTEP" drivers in your \DOS directory
copy dstep*.* c:\dos
echo Installing the "Mouse" drivers and SETCLK in your \DOS directory
copy \mouse.* c:\dos
copy \setclk.exe c:\dos
echo Backing up AUTOEXEC.BAT and CONFIG.SYS (if present) to AUTOEXEC.OLD
echo and CONFIG.OLD (do not be alarmed by "File Not Found" errors).
copy c:\autoexec.bat c:\autoexec.old
copy c:\config.sys c:\config.old
echo Installing AUTOEXEC.BAT and CONFIG.SYS at your root (C:\).
copy \autoexec.bat c:\
copy \config.sys c:\
pause
cls
echo Now remove the DOS Supplemental Diskette, and replace it
echo with the DOS System Diskette. Then type:
echo COPY *.* c:\DOS and press the RETURN key.
echo After this, you may select Warm Boot from the Misc menu
echo to restart DOS.